home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 4020
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7365
- Height = 4425
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 4020
- ScaleWidth = 7365
- Top = 1140
- Width = 7485
- Begin CommandButton Command2
- Caption = "Will Work"
- Height = 495
- Left = 3840
- TabIndex = 3
- Top = 1560
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "Fail"
- Height = 495
- Left = 3840
- TabIndex = 2
- Top = 840
- Width = 1215
- End
- Begin TextBox Text2
- Height = 495
- Left = 1320
- TabIndex = 1
- Text = "Text2"
- Top = 1560
- Width = 1215
- End
- Begin TextBox Text1
- Height = 285
- Left = 1440
- TabIndex = 0
- Text = "Text1"
- Top = 720
- Width = 1095
- End
- Option Explicit
- Sub Command1_Click ()
- 'Text2.Text = mytax(text1.Text)
- End Sub
- Sub Command2_Click ()
- Text2.Text = mytax((text1.Text))
- End Sub
- Function mytax (amt As String) As Single
- mytax = Val(amt) * .08
- End Function
-